home *** CD-ROM | disk | FTP | other *** search
/ Sprite 1984 - 1993 / Sprite 1984 - 1993.iso / src / cmds / update / makefile.orig < prev    next >
Encoding:
Makefile  |  1992-03-06  |  489 b   |  24 lines

  1. CC = cc
  2. CFLAGS = -O -Dhpux -DSYSV
  3. LDFLAGS = 
  4.  
  5. # Regexp and strtoul and NEEDSTRERROR can be removed
  6. # if your system supplies them.
  7.  
  8. update: update.o option.o strtoul.o regexp.o
  9.     $(CC) $(LDFLAGS) -o update update.o option.o strtoul.o regexp.o
  10.  
  11. update.o: update.c
  12.     $(CC) $(CFLAGS) -DNEEDSTRERROR -c update.c
  13.  
  14. option.o: option.c option.h cfuncproto.h
  15.     $(CC) $(CFLAGS) -c option.c
  16.  
  17. regexp.o: regexp.c regexp.h
  18.     $(CC) $(CFLAGS) -c regexp.c
  19.  
  20. strtoul.o: strtoul.c
  21.     $(CC) $(CFLAGS) -c strtoul.c
  22.  
  23.  
  24.